home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue70
/
DBEX
/
Listing6.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2001-04-30
|
319 b
|
12 lines
var
intResult: integer;
begin
intResult:=SQLConnection1.ExecuteDirect(
'UPDATE CUSTOMER SET CONTACT_FIRST = "Marge" '+
'WHERE CUSTOMER = "Mrs. Beauvais"');
if intResult >= 0 then
ShowMessage('Success ('+IntToStr(intResult)+')')
else
ShowMessage('Failed ('+IntToStr(intResult)+')');
end;